home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / AltKeyQ / AltKeyQ.h < prev    next >
C/C++ Source or Header  |  1996-09-26  |  1KB  |  65 lines

  1. #ifndef ALTKEYQ_H
  2. #define ALTKEYQ_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17.  
  18. /****************************************************************************/
  19.  
  20.  
  21. #define MSG_CXDESCR 0
  22. #define MSG_CXDESCR_STR "MS-DOS Style Alt key usage"
  23.  
  24. #define MSG_ABORT_GAD 1
  25. #define MSG_ABORT_GAD_STR "Abort Program"
  26.  
  27. #define MSG_NOTFOUND 2
  28. #define MSG_NOTFOUND_STR "Couldn't find\n%s"
  29.  
  30. #define MSG_NOMEMORY 3
  31. #define MSG_NOMEMORY_STR "Not enough memory"
  32.  
  33. #define MSG_INITFAIL 4
  34. #define MSG_INITFAIL_STR "Initialization failed"
  35.  
  36.  
  37. /****************************************************************************/
  38.  
  39.  
  40. #ifdef STRINGARRAY
  41.  
  42. struct AppString
  43. {
  44.     LONG   as_ID;
  45.     STRPTR as_Str;
  46. };
  47.  
  48. struct AppString AppStrings[] =
  49. {
  50.     {MSG_CXDESCR,MSG_CXDESCR_STR},
  51.     {MSG_ABORT_GAD,MSG_ABORT_GAD_STR},
  52.     {MSG_NOTFOUND,MSG_NOTFOUND_STR},
  53.     {MSG_NOMEMORY,MSG_NOMEMORY_STR},
  54.     {MSG_INITFAIL,MSG_INITFAIL_STR},
  55. };
  56.  
  57.  
  58. #endif /* STRINGARRAY */
  59.  
  60.  
  61. /****************************************************************************/
  62.  
  63.  
  64. #endif /* ALTKEYQ_H */
  65.